Credit Transfer Outbound
The Transfer API enables to initiate outbound transactions.
Method: POST
{{URL}}/PLMASTER/rpc/paymentv2
Headers
Name | Value |
---|---|
Content-Type | application/json |
Example
Payload Parameters
Parameter | Description |
---|---|
memo Optional | String Description or note related to the payment Example – "Salary12478" |
product Mandatory | String Type of product Example – "PL" |
program Mandatory | String program associated with the payment Example – "100000000541001" |
transactionDateTime Optional | String date and time of the transaction Example – "2021-12-23 12:33:41" |
channel Mandatory | String Channel through which the transaction was made Example – "FED_NOW" or "CLEARING_HOUSE" |
transactionType Mandatory | String Type of transaction Example – "CCT_OUT" or "RTP_OUT" |
reference Mandatory | String reference for the transaction Example – "reference" |
processor Optional | String Processor to which the payment channel is aligned for transaction Example – "FEDNOW" or "TCH" |
transactionAmount Mandatory | Object |
amount Mandatory | String Amount of transaction Example – "91" |
currency Mandatory | String Code of the currency type in which the transaction is initiated Example – "USD" |
debtorAccount Mandatory | Object |
identification Mandatory | String Account identification of sender Example – "200812498478915" |
identificationType Mandatory | String Type of identification used for sender account Example – "ACCOUNT_NUMBER" |
creditorAccount Mandatory | Object |
institution Optional | Object |
identification Optional | String Identification of the receiver's bank or financial institution Example – "011002550" |
name Optional | String Name of the receiver's bank or financial institution Example – "ITALBANK" |
identificationType Optional | String Type of identification used for bank or financial institution Example – "ABA" |
identification Mandatory | String Account identification of receiver Example – "8346868364836485" |
identificationType2 Optional | String Additional type of identification used Example – "CHECKING" |
identificationType Mandatory | String Type of identification used for receiver account Example – "ACCOUNT_NUMBER" |
creditor Mandatory | Object |
firstName Mandatory | String Receiver's first name Example – "Hafiz" |
lastName Optional | String Receiver's first name Example – "Saeed" |
Identification Optional | String Receiver's identification Example – "857412563" |
middleName Optional | String Receiver's middle name Example – "" |
identificationType Optional | String Type of identification used Example – "SSN" |
userType Mandatory | String Type of account holder Example – "INDIVIDUAL" |
creditorContact Mandatory | Object |
primaryPhone Mandatory | String Primary contact number of receiver Example – "1253674563" |
primaryEmail Mandatory | String Primary email address of receiver Example – "steve-woz@rtp-tp.com" |
creditorPostalAddress Mandatory | Object |
zipCode Mandatory | String Zipcode of receiver's address Example – "66614" |
city Optional | String City of receiver's address Example – "Topeka" |
addressType Optional | String Type of address Example – "HOUSE" |
countryCode Mandatory | String Country code of receiver's address Example – "840" |
addressLine1 Mandatory | String First line of address Example – "2745 SW cross VILLA WEST" |
addressLine2 Optional | String Second line of address Example – "304 street" |
State Optional | String State of receiver's address Example – "KS" |
- cURL
- C#
- Go
- NodeJs
curl --location '{{URL}}/PLMASTER/rpc/paymentv2' \
--header 'Content-Type: application/json' \
--data-raw '{"memo":"Salary12478","product":"PL","program":"100000000541001","transactionDateTime":"2021-12-23 12:33:41","channel":"CLEARING_HOUSE","transactionType":"RTP_OUT","reference":"{{reference}}","processor":"TCH","transactionAmount":{"amount":"91","currency":"USD"},"debtorAccount":{"identification":"200812498478915","identificationType":"ACCOUNT_NUMBER"},"creditorAccount":{"institution":{"identification":"234567891","name":"ITALBANK","identificationType":"ABA"},"identification":"8346868364836485","identificationType2":"CHECKING","identificationType":"ACCOUNT_NUMBER"},"creditor":{"firstName":"Hafiz","lastName":"Saeed","identification":"857412563","middleName":"","identificationType":"SSN","userType":"INDIVIDUAL"},"creditorContact":{"primaryPhone":"1253674563","primaryEmail":"steve-woz@rtp-tp.com"},"creditorPostalAddress":{"zipCode":"66614","city":"Topeka","addressType":"HOUSE","countryCode":"840","addressLine1":"2745 SW cross VILLA WEST","addressLine2":"304 street","state":"KS"}}'
var options = new RestClientOptions("{{URL}}")
{
MaxTimeout = -1,
};
var client = new RestClient(options);
var request = new RestRequest("/PLMASTER/rpc/paymentv2", Method.Post);
request.AddHeader("Content-Type", "application/json");
var body = @"{
" + "\n" +
@" ""memo"": ""Salary12478"",
" + "\n" +
@" ""product"": ""PL"",
" + "\n" +
@" ""program"": ""100000000541001"",
" + "\n" +
@" ""transactionDateTime"": ""2021-12-23 12:33:41"",
" + "\n" +
@" ""channel"": ""CLEARING_HOUSE"",
" + "\n" +
@" ""transactionType"": ""RTP_OUT"",
" + "\n" +
@" ""reference"": ""{{reference}}"",
" + "\n" +
@" ""processor"": ""TCH"",
" + "\n" +
@" ""transactionAmount"": {
" + "\n" +
@" ""amount"": ""91"",
" + "\n" +
@" ""currency"": ""USD""
" + "\n" +
@" },
" + "\n" +
@" ""debtorAccount"": {
" + "\n" +
@" ""identification"": ""200812498478915"",
" + "\n" +
@" ""identificationType"": ""ACCOUNT_NUMBER""
" + "\n" +
@" },
" + "\n" +
@" ""creditorAccount"": {
" + "\n" +
@" ""institution"": {
" + "\n" +
@" ""identification"": ""234567891"",
" + "\n" +
@" ""name"": ""ITALBANK"",
" + "\n" +
@" ""identificationType"": ""ABA""
" + "\n" +
@" },
" + "\n" +
@" ""identification"": ""8346868364836485"",
" + "\n" +
@" ""identificationType2"": ""CHECKING"",
" + "\n" +
@" ""identificationType"": ""ACCOUNT_NUMBER""
" + "\n" +
@" },
" + "\n" +
@" ""creditor"": {
" + "\n" +
@" ""firstName"": ""Hafiz"",
" + "\n" +
@" ""lastName"": ""Saeed"",
" + "\n" +
@" ""identification"": ""857412563"",
" + "\n" +
@" ""middleName"": """",
" + "\n" +
@" ""identificationType"": ""SSN"",
" + "\n" +
@" ""userType"": ""INDIVIDUAL""
" + "\n" +
@" },
" + "\n" +
@" ""creditorContact"": {
" + "\n" +
@" ""primaryPhone"": ""1253674563"",
" + "\n" +
@" ""primaryEmail"": ""steve-woz@rtp-tp.com""
" + "\n" +
@" },
" + "\n" +
@" ""creditorPostalAddress"": {
" + "\n" +
@" ""zipCode"": ""66614"",
" + "\n" +
@" ""city"": ""Topeka"",
" + "\n" +
@" ""addressType"": ""HOUSE"",
" + "\n" +
@" ""countryCode"": ""840"",
" + "\n" +
@" ""addressLine1"": ""2745 SW cross VILLA WEST"",
" + "\n" +
@" ""addressLine2"": ""304 street"",
" + "\n" +
@" ""state"": ""KS""
" + "\n" +
@" }
" + "\n" +
@"}";
request.AddStringBody(body, DataFormat.Json);
RestResponse response = await client.ExecuteAsync(request);
Console.WriteLine(response.Content);
package main
import (
"fmt"
"strings"
"net/http"
"io/ioutil"
)
func main() {
url := "{{URL}}/PLMASTER/rpc/paymentv2"
method := "POST"
payload := strings.NewReader(`{`+"
"+`
"memo": "Salary12478",`+"
"+`
"product": "PL",`+"
"+`
"program": "100000000541001",`+"
"+`
"transactionDateTime": "2021-12-23 12:33:41",`+"
"+`
"channel": "CLEARING_HOUSE",`+"
"+`
"transactionType": "RTP_OUT",`+"
"+`
"reference": "{{reference}}",`+"
"+`
"processor": "TCH",`+"
"+`
"transactionAmount": {`+"
"+`
"amount": "91",`+"
"+`
"currency": "USD"`+"
"+`
},`+"
"+`
"debtorAccount": {`+"
"+`
"identification": "200812498478915",`+"
"+`
"identificationType": "ACCOUNT_NUMBER"`+"
"+`
},`+"
"+`
"creditorAccount": {`+"
"+`
"institution": {`+"
"+`
"identification": "234567891",`+"
"+`
"name": "ITALBANK",`+"
"+`
"identificationType": "ABA"`+"
"+`
},`+"
"+`
"identification": "8346868364836485",`+"
"+`
"identificationType2": "CHECKING",`+"
"+`
"identificationType": "ACCOUNT_NUMBER"`+"
"+`
},`+"
"+`
"creditor": {`+"
"+`
"firstName": "Hafiz",`+"
"+`
"lastName": "Saeed",`+"
"+`
"identification": "857412563",`+"
"+`
"middleName": "",`+"
"+`
"identificationType": "SSN",`+"
"+`
"userType": "INDIVIDUAL"`+"
"+`
},`+"
"+`
"creditorContact": {`+"
"+`
"primaryPhone": "1253674563",`+"
"+`
"primaryEmail": "steve-woz@rtp-tp.com"`+"
"+`
},`+"
"+`
"creditorPostalAddress": {`+"
"+`
"zipCode": "66614",`+"
"+`
"city": "Topeka",`+"
"+`
"addressType": "HOUSE",`+"
"+`
"countryCode": "840",`+"
"+`
"addressLine1": "2745 SW cross VILLA WEST",`+"
"+`
"addressLine2": "304 street",`+"
"+`
"state": "KS"`+"
"+`
}`+"
"+`
}`)
client := &http.Client {
}
req, err := http.NewRequest(method, url, payload)
if err != nil {
fmt.Println(err)
return
}
req.Header.Add("Content-Type", "application/json")
res, err := client.Do(req)
if err != nil {
fmt.Println(err)
return
}
defer res.Body.Close()
body, err := ioutil.ReadAll(res.Body)
if err != nil {
fmt.Println(err)
return
}
fmt.Println(string(body))
}
var https = require('follow-redirects').https;
var fs = require('fs');
var options = {
'method': 'POST',
'hostname': '{{URL}}',
'path': '/PLMASTER/rpc/paymentv2',
'headers': {
'Content-Type': 'application/json'
},
'maxRedirects': 20
};
var req = https.request(options, function (res) {
var chunks = [];
res.on("data", function (chunk) {
chunks.push(chunk);
});
res.on("end", function (chunk) {
var body = Buffer.concat(chunks);
console.log(body.toString());
});
res.on("error", function (error) {
console.error(error);
});
});
var postData = JSON.stringify({
"memo": "Salary12478",
"product": "PL",
"program": "100000000541001",
"transactionDateTime": "2021-12-23 12:33:41",
"channel": "CLEARING_HOUSE",
"transactionType": "RTP_OUT",
"reference": "{{reference}}",
"processor": "TCH",
"transactionAmount": {
"amount": "91",
"currency": "USD"
},
"debtorAccount": {
"identification": "200812498478915",
"identificationType": "ACCOUNT_NUMBER"
},
"creditorAccount": {
"institution": {
"identification": "234567891",
"name": "ITALBANK",
"identificationType": "ABA"
},
"identification": "8346868364836485",
"identificationType2": "CHECKING",
"identificationType": "ACCOUNT_NUMBER"
},
"creditor": {
"firstName": "Hafiz",
"lastName": "Saeed",
"identification": "857412563",
"middleName": "",
"identificationType": "SSN",
"userType": "INDIVIDUAL"
},
"creditorContact": {
"primaryPhone": "1253674563",
"primaryEmail": "steve-woz@rtp-tp.com"
},
"creditorPostalAddress": {
"zipCode": "66614",
"city": "Topeka",
"addressType": "HOUSE",
"countryCode": "840",
"addressLine1": "2745 SW cross VILLA WEST",
"addressLine2": "304 street",
"state": "KS"
}
});
req.write(postData);
req.end();
Request Body (Applicable for both FedNow and RTP)
{
"memo": "Salary12478",
"product": "PL",
"program": "100000000541001",
"transactionDateTime": "2021-12-23 12:33:41",
"channel": "CLEARING_HOUSE",
"transactionType": "RTP_OUT",
"reference": "{{reference}}",
"processor": "TCH",
"transactionAmount": {
"amount": "91",
"currency": "USD"
},
"debtorAccount": {
"identification": "200812498478915",
"identificationType": "ACCOUNT_NUMBER"
},
"creditorAccount": {
"institution": {
"identification": "234567891",
"name": "ITALBANK",
"identificationType": "ABA"
},
"identification": "8346868364836485",
"identificationType2": "CHECKING",
"identificationType": "ACCOUNT_NUMBER"
},
"creditor": {
"firstName": "Hafiz",
"lastName": "Saeed",
"identification": "857412563",
"middleName": "",
"identificationType": "SSN",
"userType": "INDIVIDUAL"
},
"creditorContact": {
"primaryPhone": "1253674563",
"primaryEmail": "steve-woz@rtp-tp.com"
},
"creditorPostalAddress": {
"zipCode": "66614",
"city": "Topeka",
"addressType": "HOUSE",
"countryCode": "840",
"addressLine1": "2745 SW cross VILLA WEST",
"addressLine2": "304 street",
"state": "KS"
}
}
Response: 200
Response Parameters
Parameter | Description |
---|---|
id | String Unique identifier of the request Example – "1" |
result | Object |
api | Object |
type | String Type of transaction Example – "RTP_OUT_ACK" |
reference | String Unique reference number of transaction Example – "1712637198835" |
dateTime | String Date and time of the transaction Example – "2024-04-09 04:33:20" |
account | Object |
accountId | String Account number of the account Example – "200812498478915" |
balanceCents | Number Balance amount of the account in cents Example – 123144041997035 |
holdBalanceCents | Number Balance amount that should be held in the account Example – 200 |
status | String Current status of the account Example – "ACTIVE" |
transactionNumber | String Unique identifier of the transaction Example – "QA00000003415002" |
transactionStatus | String Current status of the transaction Example – "PENDING" |
transactionAmountCents | Number Amount of transaction in cents Example – 91 |
originalRequestBase64 | String Base64 code representing original transaction request Example – "Base64 Value of Original Request" |
processId | String Unique identifier of the whole transaction process Example – "20240409043320000CBPL24040903320002" |
header | Object |
reference | String Reference ID of the response Example – "1712637198835" |
apiKey | String API key used for identification Example – "cab8137f45ac44d7904164d1d14211bd" |
signature | String API response digital signature Example – "MEQCIEei/yWRD+X4l8NvwLB8LcZC9HoQNpxyeN5k3rbJETW/AiAOddOQmxLOTQGmFCLGzVSkWwGKxWwg747HAksrTyqP5Q==" |
Response Body (Applicable for both FedNow and RTP)
{
"id": "1",
"result": {
"api": {
"type": "RTP_OUT_ACK",
"reference": "1712637198835",
"dateTime": "2024-04-09 04:33:20"
},
"account": {
"accountId": "200812498478915",
"balanceCents": 123144041997035,
"holdBalanceCents": 200,
"status": "ACTIVE"
},
"transactionNumber": "QA00000003415002",
"transactionStatus": "PENDING",
"transactionAmountCents": 91,
"originalRequestBase64": "Base64 Value of Original Request",
"processId": "20240409043320000CBPL24040903320002"
},
"header": {
"reference": "1712637198835",
"apiKey": "cab8137f45ac44d7904164d1d14211bd",
"signature": "MEQCIEei/yWRD+X4l8NvwLB8LcZC9HoQNpxyeN5k3rbJETW/AiAOddOQmxLOTQGmFCLGzVSkWwGKxWwg747HAksrTyqP5Q=="
}
}